home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Tools & Utilities
/
Collection of Tools and Utilities.iso
/
pascal
/
spoc88.zip
/
LOOPS.ZIP
/
FORTEST.BAS
< prev
next >
Wrap
BASIC Source File
|
1988-06-10
|
144b
|
7 lines
'A simple program demonstrating FOR..NEXT
' with the STEP modifier:
FOR i = 2 to 8 STEP 2
Print i
NEXT i
PRINT "Who do we appreciate?"